Creates a new instance of this type using the default constructor.

Namespace:  C1.Silverlight
Assembly:  C1.Silverlight (in C1.Silverlight.dll)

Syntax

C#
public static T New<T>(
	this Type type
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function New(Of T) ( _
	type As Type _
) As T

Parameters

type
Type: System..::..Type
The type.

Type Parameters

T

Return Value

A new instance of type T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also